home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d7 / dbdial.arc / DIAL.DOC next >
Text File  |  1989-08-20  |  3KB  |  71 lines

  1.  
  2. DIAL1.bin -- DIAL2.bin - Copyright (c) 1989 Starboard Tack Consulting
  3.                          Todd B. Carlson
  4.                          365 N. Tratt #7
  5.                          Whitewater, WI  53190
  6.                          (414)473-7419
  7.  
  8. Discalaimer:
  9.         These programs have been tested extensively and appear to work.
  10. Even though we take pride in our work and would like to claim that they 
  11. will work under every operating system and every program that accepts 
  12. BIN files, we cannot.  Really what we mean is, use at YOUR OWN RISK!! If 
  13. one of these programs malfunctions and destroys your hard drive or other
  14. miscellaneous parts of your system, well we appologize, but unfortunately
  15. there is nothing we can do about it.
  16.  
  17. Also, to keep the lawyers happy, dBASE IV, dBASE III, and dBASE III+ are
  18. all registered trademarks of Ashton Tate.
  19.  
  20. To run the sample programs, load dBASE, then type DO exdialX (replace
  21. the X with a 4 for dBASE IV, or a 3 for dBASE III or III+).  Then just
  22. answer the questions.
  23.  
  24. Overview-
  25.         Both DIAL1 and DIAL2 do the same basic functions.  They dial 
  26. the phone from inside of dBASE (or other programs that accept assembly 
  27. language files that start at ORG 0).  Both have been tested under dBASE
  28. IV and work extremely well.  They are very simple to use, if you have
  29. a modem attached to COM1:, simply 'LOAD' the program DIAL1 (or DIAL2 for 
  30. COM2:), then 'CALL' it with a number to dial.  There is no need to append
  31. an 'ATDT' to the beginning of the number, the program supplies that for 
  32. you.
  33.  
  34. e.g.
  35.                 LOAD    DIAL1
  36.                 CALL    DIAL1 with "1-414-473-7419"
  37.  
  38.                         or
  39.  
  40.                 LOAD    DIAL1
  41.                 STORE   "1-414-473-7419" to m_phone
  42.                 CALL    DIAL1 with m_phone
  43.  
  44. Then press the space bar to hang up the phone.  The program will send 
  45. the string 'ATH0', followed by an 'ATZ.  The reason we send an 'ATZ' 
  46. (modem reset) is for those modems that automatically hang up for 
  47. whatever error, or time out encountered when DIALx is called again, 
  48. without powering down the modem.  It will have no affect (i.e. it will
  49. do absolutely nothing).
  50.  
  51.  
  52. If you find either of these usefull to you, or you intend to use either 
  53. one in a program, be it commercial or private, we would hope that you 
  54. will respect the time and money that we have put into these programs.  
  55.  
  56. Please send what you feel the programs are worth to:
  57. (WI Residents please add 5% sales tax)
  58.  
  59. Starboard Tack Consulting
  60. c/o Todd Carlson
  61. 365 N. Tratt #7
  62. Whitewater, WI 53190
  63.  
  64. Whether you use either of the programs or not, we would appreciate any 
  65. bug reports.  By mail, phone (sorry we cannot accept collect calls), or
  66. leave a message on Exec-PC to Todd Carlson.
  67.  
  68.                                         Thank You,
  69.  
  70.                                         STC
  71.